home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / libg_261.zip / libg_261 / libio / stdio / Makefile.in < prev    next >
Makefile  |  1994-10-18  |  741b  |  24 lines

  1. srcdir = .
  2.  
  3. #### package, host, target, and site dependent Makefile fragments come in here.
  4. ##
  5.  
  6. # These are compiled from the corresponding ../ioFOO.c files.
  7. STDIO_RENAMED_OBJECTS = ... filled in by configure ...
  8. # These are the files that a libc would want.
  9. STDIO_OBJECTS = $(STDIO_RENAMED_OBJECTS) \
  10.   clearerr.o fdopen.o feof.o ferror.o fgetc.o fileno.o \
  11.   fputc.o freopen.o fseek.o getc.o getchar.o getdelim.o getline.o getw.o \
  12.   popen.o putc.o putchar.o putw.o rewind.o \
  13.   setbuf.c setfileno.o setlinebuf.o snprintf.o \
  14.   vfprintf.o vfscanf.o vprintf.o vscanf.o vsnprintf.o
  15.  
  16. CC_FOR_STDIO=$(CC)
  17. CINCLUDES = -I. -I$(srcdir) -I.. -I$(srcdir)/.. -D__USE_GNU
  18.  
  19. nothing:
  20.  
  21. stdio.list: $(STDIO_OBJECTS)
  22.     @echo "$(STDIO_OBJECTS)" >stdio.list
  23.  
  24.